home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / ScrollViewDeluxe / Ruler.h < prev    next >
Text File  |  1993-11-01  |  281b  |  19 lines

  1. #import <appkit/appkit.h>
  2.  
  3. @interface Ruler : View
  4. {
  5.     Font *font;
  6.     NXCoord descender;
  7.     NXCoord startX;
  8.     NXCoord lastlp, lasthp;
  9.     BOOL flipped;
  10.     BOOL notHidden;
  11. }
  12.  
  13. + (NXCoord)width;
  14.  
  15. - setFont:(Font *)aFont;
  16. - drawSelf:(const NXRect *)rects :(int)rectCount;
  17.  
  18. @end
  19.